From b25e5aa958e7b4ff032c05d32dfc3de90cb2c4e4 Mon Sep 17 00:00:00 2001 From: "sd386@font.cl.cam.ac.uk" Date: Fri, 19 Aug 2005 18:08:29 +0000 Subject: [PATCH] Fix broken 'xm sedf', fixed by Ross Mcilroy Signed-off by: Stephan.Diestelhorst@{cl.cam.ac.uk, inf.tu-dresden.de} --- tools/python/xen/xm/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/xen/xm/main.py b/tools/python/xen/xm/main.py index e195196a5e..d711ef9d69 100644 --- a/tools/python/xen/xm/main.py +++ b/tools/python/xen/xm/main.py @@ -434,7 +434,7 @@ def xm_sedf(args): arg_check(args, 6, "sedf") dom = args[0] - v = map(int, args[1:5]) + v = map(int, args[1:6]) from xen.xend.XendClient import server server.xend_domain_cpu_sedf_set(dom, *v) -- 2.30.2